home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1998 September / EnigmA AMIGA RUN 30 (1998)(G.R. Edizioni)(IT)[!][issue 1998-09].iso / recent / gms_so1.lha / COMPILE_SOUND.TXT next >
Text File  |  1998-07-19  |  1KB  |  31 lines

  1.  
  2. This source code requires the Version 1.2 developer archive on Aminet
  3. (dev/misc/gms_dev.lha).  Compilation of this module means that you have
  4. read and agreed to the text in the DISTRIBUTION.TXT file.
  5.  
  6. NOTE:  There is a bug in SAS/C which occurs when using registers a0 and a1
  7. together in a function.  This only happens when both registers are using a
  8. pointer type, such as BYTE *, APTR or struct Object *.  So if you see such
  9. definitions being replaced with LONGs and then being converted inside the
  10. function, it is done specifically to prevent this bug.
  11.  
  12. To compile every part of the sound module with SAS/C:
  13.  
  14.   1> sc sound.c             <Compile>
  15.   1> sc snd_data.c          <Compile data area>
  16.   1> link.scr               <Link it>
  17.  
  18. To compile with DiceC:
  19.  
  20.   1> dcc -c -l0 -mD -mi snd_data.c -o snd_data.o
  21.   1> dcc -c -l0 -mD -mi sound.c -o sound.o
  22.   1> dlink snd_data.o sound.o tags.o cs.lib -o GMS:System/sound.mod
  23.  
  24. To compile everything at once using dice, just execute the compile.dcc
  25. script.  The compile.sas script does the same for SAS/C.
  26.  
  27. If the dpkernel.library is resident after compilation (eg.  you have run
  28. some demos beforehand) then you will need to do a "flush dpkernel.library"
  29. so that the module will be reloaded the next time you run something.
  30.  
  31.